11be6070318c8d504b3e318fe480887871c94a96,enterprise/main/java/org/neo4j/kernel/HighlyAvailableGraphDatabase.java,HighlyAvailableGraphDatabase,receive,#Response#,551

Before Change


            {
                String resourceName = tx.first();
                XaDataSource dataSource = localDataSourceManager.getXaDataSource( resourceName );
                dataSource.applyCommittedTransaction( tx.second(), tx.third().extract() );
            }
            updateTime();
            return response.response();

After Change


            {
                String resourceName = tx.first();
                XaDataSource dataSource = localDataSourceManager.getXaDataSource( resourceName );
                ReadableByteChannel txStream = tx.third().extract();
                try
                {
                    dataSource.applyCommittedTransaction( tx.second(), txStream );
                }
                finally
                {